home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Source Code / C / Applications / Python 1.3.3 / Python 133 SRC / Mac / Modules / evt / evtsupport.py < prev   
Text File  |  1996-04-09  |  3KB  |  82 lines

  1. # This script generates a Python interface for an Apple Macintosh Manager.
  2. # It uses the "bgen" package to generate C code.
  3. # The function specifications are generated by scanning the mamager's header file,
  4. # using the "scantools" package (customized for this particular manager).
  5.  
  6. import string
  7.  
  8. # Declarations that change for each manager
  9. MACHEADERFILE = 'Events.h'        # The Apple header file
  10. MODNAME = 'Evt'                # The name of the module
  11. OBJECTNAME = 'Event'            # The basic name of the objects used here
  12. KIND = 'Record'                # Usually 'Ptr' or 'Handle'
  13.  
  14. # The following is *usually* unchanged but may still require tuning
  15. MODPREFIX = MODNAME            # The prefix for module-wide routines
  16. OBJECTTYPE = OBJECTNAME + KIND        # The C type used to represent them
  17. OBJECTPREFIX = MODPREFIX + 'Obj'    # The prefix for object methods
  18. INPUTFILE = string.lower(MODPREFIX) + 'gen.py' # The file generated by the scanner
  19. OUTPUTFILE = MODNAME + "module.c"    # The file generated by this program
  20.  
  21. from macsupport import *
  22.  
  23. # Create the type objects
  24.  
  25. #WindowPeek = OpaqueByValueType("WindowPeek", OBJECTPREFIX)
  26.  
  27. RgnHandle = FakeType("(RgnHandle)0")
  28. # XXXX Should be next, but this will break a lot of code...
  29. # RgnHandle = OpaqueByValueType("RgnHandle", "OptResObj")
  30.  
  31. KeyMap = ArrayOutputBufferType("KeyMap")
  32. MacOSEventKind = Type("MacOSEventKind", "h") # Old-style
  33. MacOSEventMask = Type("MacOSEventMask", "h") # Old-style
  34. EventMask = Type("EventMask", "h")
  35. EventKind = Type("EventKind", "h")
  36.  
  37. includestuff = includestuff + """
  38. #include <%s>""" % MACHEADERFILE + """
  39. #include <Desk.h>
  40.  
  41. #define resNotFound -192 /* Can't include <Errors.h> because of Python's "errors.h" */
  42. """
  43.  
  44. class MyObjectDefinition(GlobalObjectDefinition):
  45.     def outputCheckNewArg(self):
  46.         Output("if (itself == NULL) return PyMac_Error(resNotFound);")
  47.     def outputCheckConvertArg(self):
  48.         OutLbrace("if (DlgObj_Check(v))")
  49.         Output("*p_itself = ((WindowObject *)v)->ob_itself;")
  50.         Output("return 1;")
  51.         OutRbrace()
  52.         Out("""
  53.         if (v == Py_None) { *p_itself = NULL; return 1; }
  54.         if (PyInt_Check(v)) { *p_itself = (WindowPtr)PyInt_AsLong(v); return 1; }
  55.         """)
  56.  
  57. # From here on it's basically all boiler plate...
  58.  
  59. # Create the generator groups and link them
  60. module = MacModule(MODNAME, MODPREFIX, includestuff, finalstuff, initstuff)
  61. ##object = MyObjectDefinition(OBJECTNAME, OBJECTPREFIX, OBJECTTYPE)
  62. ##module.addobject(object)
  63.  
  64. # Create the generator classes used to populate the lists
  65. Function = OSErrFunctionGenerator
  66. ##Method = OSErrMethodGenerator
  67.  
  68. # Create and populate the lists
  69. functions = []
  70. ##methods = []
  71. execfile(INPUTFILE)
  72.  
  73. # add the populated lists to the generator groups
  74. # (in a different wordl the scan program would generate this)
  75. for f in functions: module.add(f)
  76. ##for f in methods: object.add(f)
  77.  
  78. # generate output (open the output file as late as possible)
  79. SetOutputFileName(OUTPUTFILE)
  80. module.generate()
  81.  
  82.